This creates two fields. We then use the JUnit 4 @Before annotation to initialize that before the execution of each individual unit test. For details, please see here.
This example uses the JUnit 4 @After annotation to cleanup up resources we've allocation after the execution of each individual unit test. For details, please see here.
This example uses the JUnit 4 @BeforeClass annotation to perform one-time initialization for the whole class. For details, please see here.
In this case, the first line in the method performs basic configuration of the Log4J logging system. The second line sets the default logging level for any class whose package starts with org to ERROR. This significantly reduces the output. It is possible to reduce the output one level further by setting it to FATAL.
Inserting a single record
privateint insertPerson(){final Address a1 = new Address("A Rd.", "", "Dallas", "TX", "75001");final Person p1 = new Person("Brett", 'L', "Schuchert", a1);if(!em.getTransaction().isActive()){
em.getTransaction().begin();}
em.persist(p1);return p1.getId();}
Rewrite and New Method
With these changes in hand, we can rewrite the previous test method as follows:
@Test
publicvoid example1InsertTwoPeople(){
insertPerson();
insertPerson();finalint numberFound = em.createQuery("Select p from Person p")
.getResultList().size();
assertEquals(2, numberFound);}
Here's a second test to justify all of this refactoring.
@Test
publicvoid example2(){finalint primaryKey = insertPerson();final Person p = (Person) em.find(Person.class, primaryKey);
assertNotNull(p);}
Putting it all Together
And finally, here's all of the above changes together in one place.
packageentity;importstaticorg.junit.Assert.assertEquals;importstaticorg.junit.Assert.assertNotNull;importjavax.persistence.EntityManager;importjavax.persistence.EntityManagerFactory;importjavax.persistence.Persistence;importorg.apache.log4j.BasicConfigurator;importorg.apache.log4j.Level;importorg.apache.log4j.Logger;importorg.junit.After;importorg.junit.Before;importorg.junit.BeforeClass;importorg.junit.Test;publicclass JpaApiTests {private EntityManagerFactory emf;private EntityManager em;
@BeforeClass
publicstaticvoid initializeLogging(){
BasicConfigurator.configure();Logger.getLogger("org").setLevel(Level.ERROR);}
@Before
publicvoid initEmfAndEm(){
emf = Persistence.createEntityManagerFactory("examplePersistenceUnit");
em = emf.createEntityManager();}
@After
publicvoid closeEmfAndEm(){
em.close();
emf.close();}
@Test
publicvoid example1InsertTwoPeople(){
insertPerson();
insertPerson();finalint numberFound = em.createQuery("Select p from Person p")
.getResultList().size();
assertEquals(2, numberFound);}
@Test
publicvoid example2(){finalint primaryKey = insertPerson();final Person p = (Person) em.find(Person.class, primaryKey);
assertNotNull(p);}privateint insertPerson(){final Address a1 = new Address("A Rd.", "", "Dallas", "TX", "75001");final Person p1 = new Person("Brett", 'L', "Schuchert", a1);if(!em.getTransaction().isActive()){
em.getTransaction().begin();}
em.persist(p1);return p1.getId();}}
Before putting all of this together, let's examine each of these things.
Per test method setup
This creates two fields. We then use the JUnit 4 @Before annotation to initialize that before the execution of each individual unit test. For details, please see here.
Per test method cleanup
@After public void closeEmfAndEm() { em.close(); emf.close(); }This example uses the JUnit 4 @After annotation to cleanup up resources we've allocation after the execution of each individual unit test. For details, please see here.One-time logger initialization
@BeforeClass public static void initializeLogging() { BasicConfigurator.configure(); Logger.getLogger("org").setLevel(Level.ERROR); }This example uses the JUnit 4 @BeforeClass annotation to perform one-time initialization for the whole class. For details, please see here.In this case, the first line in the method performs basic configuration of the Log4J logging system. The second line sets the default logging level for any class whose package starts with org to ERROR. This significantly reduces the output. It is possible to reduce the output one level further by setting it to FATAL.
Inserting a single record
Rewrite and New Method
With these changes in hand, we can rewrite the previous test method as follows:@Test public void example1InsertTwoPeople() { insertPerson(); insertPerson(); final int numberFound = em.createQuery("Select p from Person p") .getResultList().size(); assertEquals(2, numberFound); }Here's a second test to justify all of this refactoring.
@Test public void example2() { final int primaryKey = insertPerson(); final Person p = (Person) em.find(Person.class, primaryKey); assertNotNull(p); }Putting it all Together
And finally, here's all of the above changes together in one place.